home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 50
/
Volume 50 - JOGO DISK .iso
/
Games
/
moonstonemadness.swf
/
scripts
/
__Packages
/
Pepper.as
< prev
next >
Wrap
Text File
|
2007-09-27
|
595b
|
28 lines
class Pepper extends SideScroller.StaticObject
{
function Pepper(__mcRef, __oLayer)
{
super(__mcRef,__oLayer);
this.bObjectBlock = false;
this.bObjectSpecial = true;
this.__get__ParentLayer().doAddListener(this);
}
function onHitSpecial(__oRef)
{
this.setState("Out");
this.doLockState();
}
function doDestroy()
{
this.__get__ParentLayer().doRemoveListener(this);
super.doDestroy();
}
function doOut()
{
if(this.isStateComplete())
{
this.doDestroy();
}
}
}